home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / dejagnu.lha / dejagnu-1.0.1 / dejagnu / example / calc / configure.in < prev    next >
Text File  |  1993-05-05  |  336b  |  18 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(calc.c)
  3. AC_CONFIG_HEADER(calc.h)
  4.  
  5. #
  6. # Look for various header files
  7. #
  8. AC_HEADER_CHECK(stdlib.h, ,AC_DEFINE(NO_STDLIB_H))
  9.  
  10. #
  11. # Look for various functions
  12. #
  13. AC_FUNC_CHECK(strcmp, AC_DEFINE(HAVE_STRCMP))
  14.  
  15. #
  16. # Output Makefile with substitutions
  17. AC_OUTPUT(Makefile)
  18.